home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_WRITE.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  2.6 KB  |  102 lines

  1. ;
  2. ;    PFS:WRITE Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for PFS:WRITE")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (5, 8)        ; (Xinc, Yinc)
  10. Hysteresis    (4, 3)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (No)        ; Menu is floating (centered on cursor)
  13. EnableBeep    (Yes)        ; Allows menu switching rather than beep
  14.  
  15. ;
  16. ;    Cursor Definitions
  17. ;
  18. ArrowKeys: Cursor
  19. (
  20.     Left   ([Left])
  21.     Right  ([Right])
  22.     Up     ([Up])
  23.     Down   ([Down])
  24. )
  25.  
  26. ;
  27. ;    Button Definitions
  28. ;
  29. LBE:    Button    (Menu(Edit))           ; Left button, Edit Menu
  30. LBM:    Button    (Menu(Main))           ; Left button, Main Menu
  31. LBT:    Button    (Menu(Motion))           ; Left button, Travel/Motion Menu
  32. LBP:    Button    (Menu(Enhance))        ; Left button, Print Enhancements
  33.  
  34. MB:    Button    (Keys([F10]))           ; Middle button: Continue
  35.  
  36. RB:    Button    (Keys([Esc]))           ; Right button:    Cancel
  37.  
  38.  
  39. ;
  40. ;    Menu Definitions
  41. ;
  42. Main: Menu
  43. (
  44.     Title    ("Main")
  45.     Item    ("WRITE Main Menu",     Keys([Esc]))
  46.     Item    ("Edit Pop-up",         Menu(Edit), Button(LBE))
  47.     Item    ("Motion Pop-up",       Menu(Motion), Button(LBT))
  48.     Item    ("Enhance Pop-up",      Menu(Enhance), Button(LBP))
  49.     Item    ("Help",                Keys([F1]))
  50.     Item    ("Set/Clear Tabs",      Keys([F2]))
  51. )
  52.  
  53. Edit: Menu
  54. (
  55.     Title    ("Edit")
  56.     Item    ("Label Block",         Keys([F5]))
  57.     Item    ("Delete Block",        Keys([Del]))
  58.     Item    ("Duplicate Block",     Keys([F6]))
  59.     Item    ("Erase Line",          Keys([s-F6]))
  60.     Item    ("Erase Word",          Keys([s-F5]))
  61.     Item    ("Append",              Keys([F9]))
  62.     Item    ("Format",              Keys([F8]))
  63.     Item    ("Search",              Keys([F7]))
  64.     Item    ("Insert On/Off",       Keys([Ins]))
  65.     Item    ("Main Pop-up",         Menu(Main), Button(LBM))
  66. )
  67.  
  68. Motion: Menu
  69. (
  70.     Title    ("Motion")
  71.     Item    ("Top of Document",     Keys([Home]))
  72.     Item    ("End of Document",     Keys([End]))
  73.     Item    ("Screen Up",           Keys([PgUp]))
  74.     Item    ("Screen Down",         Keys([PgDn]))
  75.     Item    ("Previous Word",       Keys([F3]))
  76.     Item    ("Next Word",           Keys([F4]))
  77.     Item    ("Beginning of Line",   Keys([s-F3]))
  78.     Item    ("End of Line",         Keys([s-F4]))
  79.     Item    ("Next Tab Stop",       Keys([Tab]))
  80.     Item    ("Previous Tab Stop",   Keys([s-Tab]))
  81.     Item    ("Main Pop-up",         Menu(Main), Button(LBM))
  82. )
  83.  
  84. Enhance: Menu
  85. (
  86.     Title    ("Enhance")
  87.     Item    ("Boldface",            Keys([s-F8]))
  88.     Item    ("Underline",           Keys([s-F7]))
  89.     Item    ("Main Pop-up",         Menu(Main), Button(LBM))
  90. )
  91. ;
  92. ;    Mouse Definition
  93. ;
  94. Mouse
  95. (
  96.     Left    (LBM)            ; Left Button:     Main menu
  97.     Middle    (MB)            ; Middle Button: Continue
  98.     LeftRight(MB)            ; Left Right Chord: Continue
  99.     Right    (RB)            ; Right Button:  Cancel
  100.     Cursor    (ArrowKeys)
  101. )
  102.